Hi,
regarding Stata 17's new command, collect, which includes table command, I was wondering if it is possible to have different columns formats:
I was expecting to obtain:
thanks
regarding Stata 17's new command, collect, which includes table command, I was wondering if it is possible to have different columns formats:
Code:
. clear
. webuse auto
(1978 automobile data)
. table (foreign ), stat(mean price turn) nformat(%3.1f)
----------------------------------------
| Price Turn circle (ft.)
-----------+----------------------------
Car origin |
Domestic | 6072.4 41.4
Foreign | 6384.7 35.4
Total | 6165.3 39.6
----------------------------------------
Code:
----------------------------------------
| Price Turn circle (ft.)
-----------+----------------------------
Car origin |
Domestic | 6,072 41.4
Foreign | 6,384 35.4
Total | 6,165 39.6
----------------------------------------

Comment